home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / queries / pgetvertguides.cpp < prev    next >
C/C++ Source or Header  |  1996-08-15  |  705b  |  31 lines

  1. /*
  2.  *--- PGetVertGuides.cpp --------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:49 PM by Paul Ferguson.
  5.  *
  6.  * Description:  For notes about this class, refer to the
  7.  * PCL documentation file PGetVertGuides.html
  8.  *-------------------------------------------------------------------------
  9.  */
  10.  
  11. #include "PGetVertGuides.h"
  12.  
  13. PGetVertGuides::PGetVertGuides()
  14. : PListQuery(pm_getvertguides)
  15. {
  16.     Scan();
  17. }
  18.  
  19. void PGetVertGuides::Scan()
  20. {
  21.     const char * ptr = listMom.Current();
  22.  
  23.     xPosition = *(long *) ptr;
  24.     ptr += 4;
  25.     
  26.     listMom.Update(ptr);
  27. }
  28.  
  29.  
  30. // end of PGetVertGuides.cpp
  31.